home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Mousetools / MachV / Install < prev    next >
Text File  |  1996-09-26  |  2KB  |  100 lines

  1. echo "This script will copy MachV to your WBStartup drawer and SetMachV"
  2. echo "to your sys:Tools or sys:Utilities drawer.*N"
  3. echo "The library mach.library will be copied to your libs: directory.*N"
  4. echo "Then it will create the directory ENVARC:MachV and copy"
  5. echo "MachV.prefs to it.*N"
  6. echo "If you are updating from a previous version of MachV, your"
  7. echo "MachV.prefs file will not be overwritten.*N"
  8. echo "You will be prompted for all actions.*N"
  9.  
  10. ask "Ok to proceed?"
  11. if not warn
  12.   echo "Script aborted!"
  13.   quit
  14. endif
  15.  
  16. ; Copy MachV
  17.  
  18. if not exists MachV
  19.   echo "MachV not found. Aborting..."
  20.   quit
  21. endif
  22.  
  23. if exists sys:WBStartup
  24.   set destdir sys:WBStartup
  25. else
  26.   set destdir c:
  27. endif
  28.  
  29. ask "Copy MachV to $destdir?"
  30. if warn
  31.   echo "Copying MachV to $destdir"
  32.   copy MachV to $destdir
  33.   copy MachV.info to $destdir
  34. endif
  35.  
  36. ; Copy SetMachV
  37.  
  38. if not exists SetMachV
  39.   echo "SetMachV not found. Aborting..."
  40.   quit
  41. endif
  42.  
  43. if exists sys:Tools
  44.   set destdir sys:Tools
  45. else
  46.   if exists sys:Utilities
  47.     set destdir sys:Utilities
  48.   else
  49.     set destdir c:
  50.   endif
  51. endif
  52.  
  53. ask "Copy SetMachV to $destdir?"
  54. if warn
  55.   echo "Copying SetMachV to $destdir*N"
  56.   copy SetMachV $destdir
  57.   copy SetMachV.info $destdir
  58. endif
  59.  
  60. if exists mach.library
  61.   ask "Copy mach.library to libs:?"
  62.   if warn
  63.     echo "Copying mach.library to libs:*N"
  64.     copy mach.library libs:
  65.   endif
  66. else
  67.   echo "mach.library not found. Aborting..."
  68.   quit
  69. endif
  70.  
  71. if not exists ENVARC:MachV
  72.   ask "Create ENVARC:MachV?"
  73.   if warn
  74.     echo "Creating the directory ENVARC:MachV"
  75.     makedir ENVARC:MachV
  76.   endif
  77. endif
  78.  
  79. if not exists ENVARC:MachV/MachV.prefs
  80.   echo "Copying MachV.prefs to ENVARC:MachV*N"
  81.   copy MachV.prefs ENVARC:MachV
  82.   copy MachV.prefs.info ENVARC:MachV
  83. else
  84.   echo "ENVARC:MachV/MachV.prefs already exists. MachV.prefs not copied.*N"
  85. endif
  86.  
  87. ask "Copy vibra.8SVX sound file to ENVARC:MachV?"
  88. if warn
  89.   copy Beeps/vibra.8SVX ENVARC:MachV
  90. endif
  91.  
  92. echo "*NInstallation complete."
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.